home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 6: Level 6 / 17 Bit - Level 6 (1998)(Epic Marketing)[!].iso / quartz / q1166.dms / q1166.adf / CDPlay / install < prev    next >
Text File  |  1997-04-10  |  732b  |  34 lines

  1. (if (= @language "deutsch")
  2.     (
  3.         (SET Intro  "Wilkommen zum Installer-Script für CDPlay")
  4.         (SET Where  "Wohin soll das CDPlay-Packet hinkopiert werden ? Es wird ein Verzeichnis namens CDPlay angelegt")
  5.     )
  6. )
  7. (if (= @language "english")
  8.     (
  9.         (SET Intro  "Welcome to the installer-script for CDPlay")
  10.         (SET Where  "Where do you want to place the CDPlay-package ? A drawer called CDPlay will be created")
  11.     )
  12. )
  13.  
  14. (MESSAGE Intro)
  15.  
  16. (SET WUWU
  17.     (ASKDIR
  18.         (PROMPT Where)
  19.         (DEFAULT "sys:")
  20.         (HELP   "")
  21.     )
  22. )
  23.  
  24. (SET BinDest (TACKON WUWU "CDPlay"))
  25.  
  26. (RUN (CAT "makedir \""BinDest"\""))
  27.  
  28. (COPYFILES
  29.     (SOURCE ":DiskUtil/CD-ROM/CDPlay/")
  30.     (DEST   BinDest)
  31.     (ALL)
  32.     (INFOS)
  33. )
  34.